home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-02-13 | 669 b | 36 lines |
- # Build the native library support.
- #
- # Copyright (c) 1996 Systems Architecture Research Centre,
- # City University, London, UK.
- #
- # See the file "license.terms" for information on usage and redistribution
- # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- #
- # Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
-
- subdirs= @subdirs@
-
- all:
- @for i in $(subdirs); \
- do \
- (cd $$i ; $(MAKE) all) \
- done
-
- clean:
- for i in $(subdirs); \
- do \
- (cd $$i ; $(MAKE) clean) \
- done
-
- distclean:
- for i in $(subdirs); \
- do \
- (cd $$i ; $(MAKE) distclean) \
- done
-
- install:
- for i in $(subdirs); \
- do \
- (cd $$i ; $(MAKE) install) \
- done
-